home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programmer's Power Pack / Delphi Volume 1.iso / e_to_l / edchklst / utest.pas < prev   
Encoding:
Pascal/Delphi Source File  |  1996-09-15  |  433 b   |  30 lines

  1. unit Utest;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, Dialogs, StdCtrls, EdChkLst;
  8.  
  9. type
  10.   TForm1 = class(TForm)
  11.     EditCheckList1: TEditCheckList;
  12.     Label1: TLabel;
  13.     Label2: TLabel;
  14.     Label3: TLabel;
  15.   private
  16.     { DΘclarations private }
  17.   public
  18.     { DΘclarations public }
  19.   end;
  20.  
  21. var
  22.   Form1: TForm1;
  23.  
  24. implementation
  25.  
  26. {$R *.DFM}
  27.  
  28. end.
  29.  
  30.